/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  11
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       dictionary;
    object      topoSetDict;
}

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

actions
(
    // Create porousBlockage cellSet
    {
        name    porousBlockageCellSet;
        type    cellSet;
        action  new;
        source  cylinderToCell;
        p1      (0 0 0);
        p2      (0 0 1);
        radius  0.5;
    }

    // Convert porousBlockage cellSet into a cellZone
    {
        name    porousBlockage;
        type    cellZoneSet;
        action  new;
        source  setToCellZone;
        set     porousBlockageCellSet;
    }
);

// ************************************************************************* //
